home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 June: Reference Library / Dev.CD Jun 99 RL Disk 2.toast / Technical Publications / macos8 / Files / NavigationServices / ProgWithNavSrvcs1.1 / frametest.js < prev    next >
Encoding:
Text File  |  1999-04-22  |  301 b   |  23 lines  |  [TEXT/ttxt]

  1. <!--
  2.  
  3. if (parent.frames.length != 0) {
  4.     var frameLink = 'Hide Frames';
  5. }
  6.  
  7. else {
  8. var frameLink = 'Show Frames';}
  9.  
  10. function testFrame(){
  11. if (parent.frames.length != 0) {
  12.     top.location = self.location;
  13.    // loaded in frames
  14.  }
  15.  else {
  16.  
  17.  location='frameset2.html';
  18.    // not loaded frames
  19.  }
  20.  }
  21.  
  22. //-->
  23.